home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 58271 / 58271.xpi / chrome / content / schedPref.js < prev    next >
Encoding:
Text File  |  2010-02-07  |  723 b   |  16 lines

  1. if(!tim_matthews) var tim_matthews={};
  2. if(!tim_matthews.downloadScheduler) tim_matthews.downloadScheduler={};
  3. if(!tim_matthews.downloadScheduler.schedPref_js) tim_matthews.downloadScheduler.schedPref_js = {};
  4.  
  5. tim_matthews.downloadScheduler.schedPref_js = {
  6.   prefLoad: function() {
  7.       var tp1 = document.getElementById("tim_matthews.downloadScheduler.prefWin.tp1");
  8.       var tp2 = document.getElementById("tim_matthews.downloadScheduler.prefWin.tp2");
  9.       
  10.       var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService).getBranch("dlScheduler.");
  11.       tp1.value = prefs.getCharPref("startTime");
  12.       tp2.value = prefs.getCharPref("finishTime");
  13.   }
  14. }
  15.  
  16.